Package Exports
- eslint-config-tui
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (eslint-config-tui) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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.
// .eslintrc.js
module.exports = {
"extends": "tui",
"rules": {
// Override rules or Add more rules
}
}
By default, this configuration expects ES5 syntax. You can override that setting to enable support for ES6 Syntax and new ES6 global variables.
// .eslintrc.js
module.exports = {
"extends": "tui",
"env": {
"es6": true // enable ES6 Syntax automatically
}
}
Learn more
License
This software is licensed under the MIT License.