Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dgchrt/eslint-config-classic
ESlint rules for classic-style JavaScript
https://github.com/dgchrt/eslint-config-classic
accessibility braces classic config eslint indentation javascript lint linter linting padding perfect pretty quotes readability rules semicolons standard tabs
Last synced: about 2 months ago
JSON representation
ESlint rules for classic-style JavaScript
- Host: GitHub
- URL: https://github.com/dgchrt/eslint-config-classic
- Owner: dgchrt
- License: mit
- Archived: true
- Created: 2021-01-08T22:10:36.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-02-26T01:45:59.000Z (9 months ago)
- Last Synced: 2024-09-26T01:47:57.752Z (about 2 months ago)
- Topics: accessibility, braces, classic, config, eslint, indentation, javascript, lint, linter, linting, padding, perfect, pretty, quotes, readability, rules, semicolons, standard, tabs
- Language: JavaScript
- Homepage: https://diogoeichert.github.io/eslint-config-classic/
- Size: 498 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
[![code style](https://img.shields.io/badge/code_style-classic-blue.svg)](http://diogoeichert.github.io/eslint-config-classic)
[![downloads](https://img.shields.io/npm/dt/eslint-config-classic.svg)](https://www.npmjs.com/package/eslint-config-classic)
[![license](https://img.shields.io/github/license/diogoeichert/eslint-config-classic.svg)](LICENSE)
[![npm version](https://img.shields.io/npm/v/eslint-config-classic.svg)](https://www.npmjs.com/package/eslint-config-classic)![classic logo](./classic.jpg)
# Classic (eslint-config-classic)
Classic-style [ESlint](https://eslint.org) rules for JavaScript.## Run
```shell
npx eslint-config-classic
```## Install
```shell
npm install --save-dev eslint-config-classic
```## Usage
### Standalone
Add a `lint` script in `package.json`:
```json
"scripts": {
"lint": "eslint-config-classic"
}
```
### Existing Configuration
Extend `classic` from your existing `.eslintrc.js` file:
```js
module.exports = {
"extends": "classic"
};
```