https://github.com/douglasneuroinformatics/eslint-config
Shared linting configurations for DNP projects written in TypeScript/JavaScript
https://github.com/douglasneuroinformatics/eslint-config
eslint eslint-config
Last synced: 10 months ago
JSON representation
Shared linting configurations for DNP projects written in TypeScript/JavaScript
- Host: GitHub
- URL: https://github.com/douglasneuroinformatics/eslint-config
- Owner: DouglasNeuroInformatics
- License: apache-2.0
- Created: 2024-03-07T23:44:51.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-08T18:44:32.000Z (almost 2 years ago)
- Last Synced: 2024-10-11T17:24:45.263Z (almost 2 years ago)
- Topics: eslint, eslint-config
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/@douglasneuroinformatics/eslint-config
- Size: 272 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
@douglasneuroinformatics/eslint-config
Shared linting configurations for DNP projects written in TypeScript/JavaScript


## Installation
```shell
pnpm add -D @douglasneuroinformatics/eslint-config eslint
```
## Usage
**eslint.config.js**
```javascript
import { config } from '@douglasneuroinformatics/eslint-config';
export default config();
```
## VSCode Setup (Recommended)
**settings.json**
```json
{
"eslint.validate": [
"javascript",
"javascriptreact",
"astro",
"typescript",
"typescriptreact",
"javascript",
"javascriptreact",
"json",
"jsonc"
]
}
```