Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Adding ESLint config and required dev dependencies
  • Loading branch information
Chris Raynor committed Sep 14, 2020
1 parent 6567bff commit 06765f9
Show file tree
Hide file tree
Showing 4 changed files with 1,432 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .eslintignore
@@ -0,0 +1,5 @@
**/webpack.config.js
lib/**
runner/dist/**
src/testdata/**
tests/**
32 changes: 32 additions & 0 deletions .eslintrc.json
@@ -0,0 +1,32 @@

{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": ["@typescript-eslint", "filenames", "github", "import", "no-async-foreach"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:github/recommended",
"plugin:github/typescript"
],
"rules": {
"filenames/match-regex": ["error", "^[a-z0-9-]+(\\.test)?$"],
"import/extensions": "error",
"import/no-amd": "error",
"import/no-commonjs": "error",
"import/no-dynamic-require": "error",
"import/no-extraneous-dependencies": ["error", {"devDependencies": false}],
"import/no-namespace": "off",
"import/no-unresolved": "error",
"import/no-webpack-loader-syntax": "error",
"no-async-foreach/no-async-foreach": "error",
"no-console": "off",
"no-sequences": "error",
"one-var": ["error", "never"],
"sort-imports": ["error", { "allowSeparatedGroups": true }]
}
}

0 comments on commit 06765f9

Please sign in to comment.