Triston Armstrong
6d5527e61c
It works just fine as a default in vscodium, but i couldnt get it to work in neovim. Had to do a little messing around and it now works perfectly in neovim which is awesome and a pretty good indication that itll work elsewhere as well. Issue #14
28 lines
442 B
JavaScript
28 lines
442 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es2021: true,
|
|
},
|
|
extends: [
|
|
"eslint:recommended",
|
|
"standard-with-typescript",
|
|
"eslint-config-prettier",
|
|
],
|
|
overrides: [
|
|
{
|
|
env: {
|
|
node: true,
|
|
},
|
|
files: [".eslintrc.{js,cjs}"],
|
|
parserOptions: {
|
|
sourceType: "script",
|
|
},
|
|
},
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: "latest",
|
|
sourceType: "module",
|
|
},
|
|
rules: {},
|
|
}
|