@nicquid/eslint-config-suitescript
v1.1.2
Published
Our eslint config file for developing SuiteScripts
Downloads
13
Readme
Flavors United JavaScript Style Guide for SuiteScript
Forked from the Airbnb eslint config and the Nicquid NQT 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-suitescript
- Create a
.eslintrc.json
file with following contents
{
"env": {
"browser": true,
"es2021": true,
"amd": true
},
"extends": "@nicquid/eslint-config-suitescript",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
}
}