chore(repo): reenable linting
This commit is contained in:
parent
db7c3e6bbf
commit
cdcd2415a6
@ -88,6 +88,9 @@ jobs:
|
||||
- run:
|
||||
name: Check Formatting
|
||||
command: yarn check-format
|
||||
- run:
|
||||
name: Run linting
|
||||
command: yarn lint
|
||||
- run:
|
||||
name: Check Commit Message Format
|
||||
command: yarn check-commit
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
{
|
||||
"root": true,
|
||||
"parser": "@typescript-eslint/parser",
|
||||
"parserOptions": {
|
||||
"project": "./tsconfig.*?.json"
|
||||
},
|
||||
@ -7,8 +8,10 @@
|
||||
"node": true
|
||||
},
|
||||
"ignorePatterns": ["**/*.ts"],
|
||||
"plugins": ["@nrwl/nx"],
|
||||
"extends": ["plugin:@nrwl/nx/typescript"],
|
||||
"rules": {},
|
||||
"plugins": ["@typescript-eslint"],
|
||||
"extends": [],
|
||||
"rules": {
|
||||
"@typescript-eslint/explicit-module-boundary-types": "off"
|
||||
},
|
||||
"overrides": []
|
||||
}
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
// we can't import from '@nrwl/workspace' because it will require typescript
|
||||
// eslint-disable-next-line @nrwl/nx/enforce-module-boundaries
|
||||
import { output } from '@nrwl/workspace/src/utils/output';
|
||||
import { getPackageManagerExecuteCommand } from '@nrwl/workspace/src/utils/detect-package-manager';
|
||||
import { dirSync } from 'tmp';
|
||||
|
||||
3
packages/web/src/utils/third-party/.eslintrc.json
vendored
Normal file
3
packages/web/src/utils/third-party/.eslintrc.json
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"rules": {}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user