chore(repo): reenable linting
This commit is contained in:
parent
db7c3e6bbf
commit
cdcd2415a6
@ -88,6 +88,9 @@ jobs:
|
|||||||
- run:
|
- run:
|
||||||
name: Check Formatting
|
name: Check Formatting
|
||||||
command: yarn check-format
|
command: yarn check-format
|
||||||
|
- run:
|
||||||
|
name: Run linting
|
||||||
|
command: yarn lint
|
||||||
- run:
|
- run:
|
||||||
name: Check Commit Message Format
|
name: Check Commit Message Format
|
||||||
command: yarn check-commit
|
command: yarn check-commit
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"root": true,
|
"root": true,
|
||||||
|
"parser": "@typescript-eslint/parser",
|
||||||
"parserOptions": {
|
"parserOptions": {
|
||||||
"project": "./tsconfig.*?.json"
|
"project": "./tsconfig.*?.json"
|
||||||
},
|
},
|
||||||
@ -7,8 +8,10 @@
|
|||||||
"node": true
|
"node": true
|
||||||
},
|
},
|
||||||
"ignorePatterns": ["**/*.ts"],
|
"ignorePatterns": ["**/*.ts"],
|
||||||
"plugins": ["@nrwl/nx"],
|
"plugins": ["@typescript-eslint"],
|
||||||
"extends": ["plugin:@nrwl/nx/typescript"],
|
"extends": [],
|
||||||
"rules": {},
|
"rules": {
|
||||||
|
"@typescript-eslint/explicit-module-boundary-types": "off"
|
||||||
|
},
|
||||||
"overrides": []
|
"overrides": []
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,7 +1,6 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
|
|
||||||
// we can't import from '@nrwl/workspace' because it will require typescript
|
// 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 { output } from '@nrwl/workspace/src/utils/output';
|
||||||
import { getPackageManagerExecuteCommand } from '@nrwl/workspace/src/utils/detect-package-manager';
|
import { getPackageManagerExecuteCommand } from '@nrwl/workspace/src/utils/detect-package-manager';
|
||||||
import { dirSync } from 'tmp';
|
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