Skip to content

Commit

Permalink
lint: remove typescript linting setup
Browse files Browse the repository at this point in the history
  • Loading branch information
rabi-siddique committed May 23, 2024
1 parent 589dee7 commit cdf8b62
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 24 deletions.
22 changes: 0 additions & 22 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,26 +37,4 @@ module.exports = {
'testing-library/prefer-screen-queries': 0,
'turbo/no-undeclared-env-vars': 0,
},

overrides: [
{
files: ['*.ts', '*.tsx'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
extends: [
'eslint:recommended',
'prettier',
'plugin:prettier/recommended',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:import/typescript',
'plugin:cypress/recommended',
'plugin:ui-testing/cypress',
'plugin:testing-library/react',
'turbo',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
],
},
],
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"fix:eslint": "eslint . --ext .js,.ts,.jsx,.tsx --fix",
"fix:prettier": "prettier --write **/*.{js,json,ts,tsx,html}",
"lint": "turbo lint:eslint lint:prettier",
"lint:eslint": "eslint . --ext .js,.ts,.jsx,.tsx",
"lint:eslint": "eslint . --ext .js,.jsx",
"lint:prettier": "prettier --check **/*.{js,json,ts,tsx,html}",
"lint:sarif": "node lint.js . --ext js",
"release": "release-it --disable-metrics",
Expand Down
2 changes: 1 addition & 1 deletion synpress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = defineConfig({
fixturesFolder,
screenshotsFolder: 'tests/e2e/screenshots',
videosFolder: 'tests/e2e/videos',
bashScriptsFolder: process.cwd() +'/bin',
bashScriptsFolder: process.cwd() + '/bin',
chromeWebSecurity: true,
viewportWidth: 1920,
viewportHeight: 1080,
Expand Down

0 comments on commit cdf8b62

Please sign in to comment.