mon-entreprise/.eslintrc.cjs

115 lines
2.9 KiB
JavaScript
Raw Normal View History

2021-12-07 12:46:03 +00:00
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
2021-12-07 12:46:03 +00:00
parserOptions: {
sourceType: 'module',
ecmaVersion: 'latest',
ecmaFeatures: {
jsx: true,
},
},
env: {
browser: true,
commonjs: true,
es6: true,
},
globals: {
process: false,
},
extends: ['eslint:recommended', 'prettier'],
2021-12-07 12:46:03 +00:00
rules: {
'no-console': 'warn',
'no-restricted-globals': ['error', 'length'],
2021-12-07 12:46:03 +00:00
'no-restricted-syntax': [
'error',
{
message:
'Utilisez le composant <Emoji /> plutôt que la function emoji directement importée de react-easy-emoji',
selector: "CallExpression[callee.name='emoji']",
},
],
},
settings: {
react: {
version: 'detect',
},
},
overrides: [
{
files: ['**/*.{js,jsx}'],
env: { node: true },
},
2021-12-07 12:46:03 +00:00
{
files: ['**/*.{ts,tsx}'],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: { jsx: true },
2021-12-07 12:46:03 +00:00
// eslint-disable-next-line no-undef
tsconfigRootDir: __dirname,
project: [
'./site/tsconfig.json',
'./modele-social/tsconfig.json',
'./exoneration-covid/tsconfig.json',
],
2021-12-07 12:46:03 +00:00
},
extends: [
'eslint:recommended',
2021-12-07 12:46:03 +00:00
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'plugin:react-hooks/recommended',
'prettier',
2021-12-07 12:46:03 +00:00
],
plugins: ['@typescript-eslint', 'react', 'react-hooks'],
rules: {
'ban-ts-comment': 'off',
'react/no-unescaped-entities': 'off',
'react/jsx-no-target-blank': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'warn',
'@typescript-eslint/no-unsafe-call': 'warn',
'@typescript-eslint/no-unsafe-argument': 'warn',
'@typescript-eslint/no-unsafe-member-access': 'warn',
'@typescript-eslint/restrict-template-expressions': 'warn',
'@typescript-eslint/no-unsafe-return': 'warn',
'@typescript-eslint/no-unsafe-assignment': 'warn',
'@typescript-eslint/no-empty-function': 'warn',
'@typescript-eslint/restrict-plus-operands': 'warn',
'@typescript-eslint/no-floating-promises': 'warn',
'@typescript-eslint/member-delimiter-style': [
'error',
{ multiline: { delimiter: 'none' } },
],
},
2021-12-07 12:46:03 +00:00
},
{
files: ['**/*.test.{js,ts}', 'site/cypress/**/*.js'],
2021-12-07 12:46:03 +00:00
env: {
mocha: true,
},
extends: [
'eslint:recommended',
'plugin:cypress/recommended',
'plugin:mocha/recommended',
'prettier',
],
plugins: ['cypress', 'mocha'],
rules: {
'cypress/no-unnecessary-waiting': 'warn',
'mocha/no-exclusive-tests': 'error',
'mocha/no-skipped-tests': 'warn',
'mocha/no-mocha-arrows': 'warn',
'mocha/no-setup-in-describe': 'warn',
'mocha/max-top-level-suites': 'warn',
'mocha/no-global-tests': 'warn',
'mocha/no-exports': 'warn',
},
2021-12-07 12:46:03 +00:00
},
],
}