-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add eslint and prettier config locally, add eslint-plugin-grommet (#2540
- Loading branch information
Showing
14 changed files
with
227 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,69 @@ | ||
const scripts = require('@hpe/project-scripts'); | ||
module.exports = scripts.eslint; | ||
// (C) Copyright 2022 Hewlett Packard Enterprise Development LP. | ||
|
||
module.exports = { | ||
parser: 'babel-eslint', | ||
extends: [ | ||
'airbnb', | ||
'plugin:jsx-a11y/recommended', | ||
'prettier', | ||
'prettier/react', | ||
'plugin:grommet/recommended', | ||
], | ||
plugins: ['react', 'jsx-a11y', 'react-hooks', 'prettier'], | ||
env: { | ||
browser: true, | ||
jest: true, | ||
}, | ||
globals: { | ||
it: true, | ||
expect: true, | ||
describe: true, | ||
jest: true, | ||
document: true, | ||
test: true, | ||
window: true, | ||
fetch: true, | ||
WebSocket: true, | ||
alert: true, | ||
}, | ||
rules: { | ||
semi: [2, 'always'], | ||
indent: 'off', | ||
'comma-dangle': ['error', 'always-multiline'], | ||
'object-curly-spacing': ['error', 'always'], | ||
'no-console': 0, | ||
'no-useless-concat': 0, | ||
'max-len': [2, { ignoreUrls: true, ignoreRegExpLiterals: true }], | ||
'jsx-a11y/href-no-hash': 0, | ||
'jsx-a11y/anchor-is-valid': 0, | ||
'react/jsx-indent': 0, | ||
'react/jsx-wrap-multilines': 0, | ||
'react/jsx-filename-extension': 0, | ||
'implicit-arrow-linebreak': 0, | ||
'import/no-named-as-default': 0, | ||
'import/newline-after-import': 1, | ||
'react/no-unescaped-entities': 0, | ||
'react/jsx-first-prop-new-line': [1, 'multiline'], | ||
'import/prefer-default-export': 0, | ||
'class-methods-use-this': 0, | ||
'operator-linebreak': 0, | ||
'react/require-default-props': 0, | ||
'react/react-in-jsx-scope': 0, | ||
'react/no-danger': 0, | ||
'react/prefer-stateless-function': 0, | ||
'react/no-array-index-key': 0, | ||
'react-hooks/rules-of-hooks': 'error', | ||
'react-hooks/exhaustive-deps': 'warn', | ||
'no-return-assign': 0, | ||
'react/destructuring-assignment': 0, | ||
'react/forbid-prop-types': 0, | ||
'react/jsx-one-expression-per-line': 0, | ||
'react/static-property-placement': 0, | ||
'react/jsx-props-no-spreading': 0, | ||
'import/no-extraneous-dependencies': 0, | ||
'import/no-cycle': 0, | ||
'global-require': 0, | ||
'import/no-dynamic-require': 0, | ||
quotes: [2, 'single', { avoidEscape: true }], | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,14 @@ | ||
const scripts = require("@hpe/project-scripts"); | ||
module.exports = scripts.prettier; | ||
// (C) Copyright 2022 Hewlett Packard Enterprise Development LP. | ||
|
||
module.exports = { | ||
printWidth: 80, | ||
tabWidth: 2, | ||
useTabs: false, | ||
semi: true, | ||
singleQuote: true, | ||
trailingComma: 'all', | ||
bracketSpacing: true, | ||
jsxBracketSameLine: false, | ||
jsxSingleQuote: false, | ||
arrowParens: 'avoid', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
aries-site/src/examples/components/notifications/TaxonomyTable.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
import React from 'react'; | ||
import { Spinner } from 'grommet'; | ||
|
||
export const SpinnerExample = () => <Spinner />; | ||
export const SpinnerExample = () => ( | ||
<Spinner | ||
message={{ | ||
start: 'Loading data.', | ||
end: 'Data has been loaded.', | ||
}} | ||
/> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.