@nicquid/eslint-config-nqt
v1.0.5
Published
Our common eslint config file
Downloads
5
Readme
Flavors United JavaScript Style Guide
Forked from the Airbnb eslint config
Setup
To enable this eslint configuration, perform the following steps:
- Run the following command to add the necessary packages to your node project
npm install --save-dev eslint eslint-plugin-import @nicquid/eslint-config-nqt
- Create a
.eslintrc.json
file with following contents
{
"env": {
"browser": true,
"commonjs": true,
"es2021": true
},
"extends": "@nicquid/eslint-config-nqt",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
}
}