https://github.com/nhn/tui.eslint.config
ESLint Sharable Configuration for TUI Component
https://github.com/nhn/tui.eslint.config
Last synced: 15 days ago
JSON representation
ESLint Sharable Configuration for TUI Component
- Host: GitHub
- URL: https://github.com/nhn/tui.eslint.config
- Owner: nhn
- License: mit
- Created: 2017-06-26T00:22:36.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-12-13T07:06:20.000Z (10 months ago)
- Last Synced: 2025-04-09T21:15:49.699Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 69.3 KB
- Stars: 23
- Watchers: 11
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-config-tui
#### ESLint sharable config for TUI components
## Install
```
$ npm install eslint eslint-config-tui --save-dev
```## Usage
> **Note:** If you have configured your project to use ESM (ECMAScript Modules) format, you can also write your ESLint configuration using the filename `eslint.config.js`.
```javascript
// eslint.config.mjs
import tui from 'eslint-config-tui';export default [
...tui,
{
rules: {
// Override rules or Add more rules
},
},
];
```If you want to distinguish with `tui/es6`, use a version before 5.0.0
## Learn more
[JavaScript Style Guide](https://github.com/nhn/fe.javascript/wiki)
[Configuring ESLint](http://eslint.org/docs/user-guide/configuring)
## License
This software is licensed under the [MIT](https://github.com/nhn/tui.eslint.config/blob/master/LICENSE) © [NHN Cloud](https://github.com/nhn).