-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
rootasjey
committed
Jul 20, 2020
1 parent
774f42b
commit a4b2c85
Showing
7 changed files
with
783 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# don't ever lint node_modules | ||
node_modules | ||
# don't lint build output (make sure it's set to your correct build folder name) | ||
dist | ||
# don't lint nyc coverage output | ||
coverage | ||
# config | ||
.eslintrc.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
browser: true, | ||
amd: true, | ||
}, | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
project: './tsconfig.json', | ||
}, | ||
plugins: [ | ||
'@typescript-eslint', | ||
], | ||
rules: { | ||
'@typescript-eslint/restrict-template-expressions': [0], | ||
'@typescript-eslint/semi': [0], | ||
'@typescript-eslint/space-before-function-paren': [0], | ||
'@typescript-eslint/strict-boolean-expressions': [0], | ||
'@typescript-eslint/quotes': [1], | ||
'comma-dangle': [1, 'always-multiline'], | ||
'padded-blocks': [0] | ||
}, | ||
extends: 'standard-with-typescript', | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
{ | ||
"compilerOptions": { | ||
"module": "CommonJS", | ||
"moduleResolution": "node", | ||
"noImplicitAny": true, | ||
"noImplicitThis": true, | ||
"resolveJsonModule": true, | ||
"sourceMap": true, | ||
"strict": true, | ||
"target": "es2018" | ||
}, | ||
"include": [ | ||
"./src/**/*", | ||
"./tests", | ||
"./typings" | ||
] | ||
"compilerOptions": { | ||
"module": "CommonJS", | ||
"moduleResolution": "node", | ||
"noImplicitAny": true, | ||
"noImplicitThis": true, | ||
"resolveJsonModule": true, | ||
"esModuleInterop": true, | ||
"sourceMap": true, | ||
"strict": true, | ||
"target": "es2018" | ||
}, | ||
"include": [ | ||
"./src/**/*", | ||
"./tests", | ||
"./typings" | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.