Skip to content

Commit

Permalink
Cleaning up configs
Browse files Browse the repository at this point in the history
  • Loading branch information
fishcharlie committed Apr 15, 2020
1 parent 96dceff commit 469d755
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 15 deletions.
10 changes: 8 additions & 2 deletions .eslintrc.js
Expand Up @@ -9,10 +9,16 @@ module.exports = {
{
"files": ["**/*.ts"],
"parser": "@typescript-eslint/parser",
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": ["@typescript-eslint"],
"rules": {
"@typescript-eslint/camelcase": "off"
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/no-this-alias": "off",
"@typescript-eslint/no-var-requires": "off"
}
}
],
Expand Down
14 changes: 1 addition & 13 deletions .gitignore
@@ -1,19 +1,7 @@
.DS_Store
thumbs.db
*.log
node_modules/
.settings
.session.vim
.vscode
dist

# Ignore webstorm directories
.idea/

.bundle/
docs/_site
Gemfile.lock

.nyc_output
coverage
coverage.html
dist

0 comments on commit 469d755

Please sign in to comment.