Skip to content

Commit

Permalink
Merge pull request #10 from landbot-org/fix_project_config
Browse files Browse the repository at this point in the history
fix: remove unused library
  • Loading branch information
echosergio authored Jan 2, 2024
2 parents 173b007 + fbf1f3d commit b88e5c0
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ module.exports = {
},
extends: [
'eslint:recommended',
'plugin:eslint-comments/recommended',
'plugin:import/recommended',
'plugin:import/typescript',
'plugin:jest/recommended',
Expand All @@ -18,7 +17,7 @@ module.exports = {
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
SharedArrayBuffer: 'readonly',
},
parser: '@typescript-eslint/parser',
parserOptions: {
Expand All @@ -32,22 +31,22 @@ module.exports = {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unused-vars': ['error'],
'prettier/prettier': ['error', require('./.prettierrc.js')],
indent: ['error', 2, {'SwitchCase': 1}],
indent: ['error', 2, { SwitchCase: 1 }],
'linebreak-style': ['error', 'unix'],
quotes: ['error', 'single', { 'avoidEscape': true }],
quotes: ['error', 'single', { avoidEscape: true }],
semi: ['error', 'always'],
'check-file/folder-match-with-fex': [
'error',
{
'*.test.{js,jsx,ts,tsx}': '!**/__tests__/',
'*.test.{js,jsx,ts,tsx}': '!**/__test__/',
},
]
],
},
settings: {
react: {
version: 'detect',
},
},
ignorePatterns: ['cypress/**/*','webpack*', '*.config.js'],
ignorePatterns: ['cypress/**/*', 'webpack*', '*.config.js'],
};

0 comments on commit b88e5c0

Please sign in to comment.