chore(repo): reenable linting

This commit is contained in:
Victor Savkin 2020-11-13 20:56:19 -05:00
parent db7c3e6bbf
commit cdcd2415a6
4 changed files with 12 additions and 4 deletions

View File

@ -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

View File

@ -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": []
} }

View File

@ -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';

View File

@ -0,0 +1,3 @@
{
"rules": {}
}