aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to 'Timeline/ClientApp/.eslintrc.js')
-rw-r--r--Timeline/ClientApp/.eslintrc.js48
1 files changed, 0 insertions, 48 deletions
diff --git a/Timeline/ClientApp/.eslintrc.js b/Timeline/ClientApp/.eslintrc.js
deleted file mode 100644
index 5232e5d8..00000000
--- a/Timeline/ClientApp/.eslintrc.js
+++ /dev/null
@@ -1,48 +0,0 @@
-module.exports = {
- env: {
- browser: true,
- es6: true,
- },
- extends: [
- 'eslint:recommended',
- 'plugin:react/recommended',
- 'plugin:@typescript-eslint/eslint-recommended',
- 'plugin:@typescript-eslint/recommended',
- 'plugin:@typescript-eslint/recommended-requiring-type-checking',
- 'prettier',
- 'prettier/react',
- 'prettier/@typescript-eslint',
- 'plugin:react-hooks/recommended',
- ],
- globals: {
- Atomics: 'readonly',
- SharedArrayBuffer: 'readonly',
- },
- parser: '@typescript-eslint/parser',
- parserOptions: {
- project: ['./src/app/tsconfig.json', './src/sw/tsconfig.json'],
- ecmaFeatures: {
- jsx: true,
- },
- ecmaVersion: 2018,
- sourceType: 'module',
- },
- plugins: ['react', '@typescript-eslint', 'react-hooks'],
- settings: {
- react: {
- version: 'detect',
- },
- },
- rules: {
- 'react/prop-types': 'off',
- '@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
- '@typescript-eslint/explicit-function-return-type': [
- 'warn',
- {
- allowExpressions: true,
- allowTypedFunctionExpressions: true,
- allowHigherOrderFunctions: true,
- },
- ],
- },
-};