Skip to content

Commit

Permalink
Updated eslint & fixed floatplaneApi/version require dependency issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Inrixia committed Sep 19, 2022
1 parent 9bd51cf commit 71b715a
Show file tree
Hide file tree
Showing 8 changed files with 333 additions and 223 deletions.
32 changes: 32 additions & 0 deletions .eslintrc.cjs
@@ -0,0 +1,32 @@
module.exports = {
"env": {
"es2021": true,
"node": true
},
"extends": [
"prettier",
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"overrides": [
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"prettier",
"@typescript-eslint"
],
"rules": {
"indent": [
"error",
"tab"
],
"semi": [
"error",
"always"
]
}
};
19 changes: 0 additions & 19 deletions .eslintrc.js

This file was deleted.

0 comments on commit 71b715a

Please sign in to comment.