Skip to content

Commit

Permalink
Switched from tslint to eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaumgarten committed Aug 15, 2021
1 parent 011089a commit 2509a47
Show file tree
Hide file tree
Showing 3 changed files with 2,652 additions and 267 deletions.
53 changes: 53 additions & 0 deletions vscode-yolol/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
/*
👋 Hi! This file was autogenerated by tslint-to-eslint-config.
https://github.com/typescript-eslint/tslint-to-eslint-config
It represents the closest reasonable ESLint configuration to this
project's original TSLint configuration.
We recommend eventually switching this configuration to extend from
the recommended rulesets in typescript-eslint.
https://github.com/typescript-eslint/tslint-to-eslint-config/blob/master/docs/FAQs.md
Happy linting! 💖
*/
module.exports = {
"env": {
"browser": true,
"es6": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/indent": [
"error",
"tab"
],
"@typescript-eslint/member-delimiter-style": [
"error",
{
"multiline": {
"delimiter": "semi",
"requireLast": true
},
"singleline": {
"delimiter": "semi",
"requireLast": false
}
}
],
"@typescript-eslint/semi": [
"error",
"always"
],
"indent": "error",
"semi": "error"
}
};
Loading

0 comments on commit 2509a47

Please sign in to comment.