eslint-config-tui
ESLint sharable config for TUI components
Install
$ npm install eslint eslint-config-tui --save-dev
Usage
Add .eslintrc.js
on your project's root directory.
module.exports = {
'extends': 'tui',
'rules': {
}
};
Support ES6
rules and syntax
To Support ES6 rules, use tui/es6
instead.
module.exports =
'extends': 'tui/es6'
};
syntax only
By default, ESLint configuration expects ES5 syntax. You can override this setting to enable support for ES6 syntax and new ES6 global variables.
module.exports = {
'extends': 'tui',
'env': {
'es6': true
}
};
Learn more
JavaScript Style Guide
Configuring ESLint
License
This software is licensed under the MIT License.