https://github.com/qubyte/eslint-config-qubyte
My personal linter configs.
https://github.com/qubyte/eslint-config-qubyte
eslint eslint-config hacktoberfest
Last synced: about 1 month ago
JSON representation
My personal linter configs.
- Host: GitHub
- URL: https://github.com/qubyte/eslint-config-qubyte
- Owner: qubyte
- Created: 2016-08-23T23:42:31.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2023-11-10T12:39:14.000Z (over 1 year ago)
- Last Synced: 2025-03-15T09:48:43.920Z (2 months ago)
- Topics: eslint, eslint-config, hacktoberfest
- Language: JavaScript
- Homepage:
- Size: 176 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# eslint-config-qubyte
Common ESLint [shareable config][1] files for qubyte. Originally based on
[eslint-config-vizia][2].Install into your project:
```shell
npm install --save eslint eslint-config-qubyte
```# Example uses:
## ES5 browser project.
Make a `eslintrc.config.js` config file with the following in:
```js
import config from 'eslint-config-qubyte';export default [
config
];
```Globals can be imported from
[the globals package](https://www.npmjs.com/package/globals). An example which
uses custom language options and globals might look like:```js
import globals from "globals";
import config from 'eslint-config-qubyte';export default [
{
files: ["**/*.js"],
languageOptions: {
globals: globals.node,
}
},
config
];
```