Skip to content

Instantly share code, notes, and snippets.

View ecxyzzy's full-sized avatar

Eddy Chen ecxyzzy

View GitHub Profile
@ecxyzzy
ecxyzzy / .eslintrc.js
Last active September 10, 2022 20:17
Proposed ESLint config for ICSSC Projects, version 0.1
// JavaScript projects
// setup: npm install --save-dev eslint eslint-plugin-simple-import-sort eslint-plugin-import
const js = {
"root": true,
"plugins": ["simple-import-sort", "import"],
"extends": ["eslint:recommended"],
"rules": {
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error", // these two autosort imports and exports
"import/first": "error", // ensures all imports are at top of file