Skip to content

Commit df1c21d

Browse files
committed
Remove linting for now since it doesn't work anyway
1 parent 0feeb5e commit df1c21d

9 files changed

Lines changed: 9 additions & 1624 deletions

File tree

.eslintrc

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/workflows/pipeline.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ jobs:
3434
- name: Check docs can build successfully
3535
run: pnpm run build:docs
3636

37-
- name: Check project linting
38-
run: pnpm run lint:check
39-
4037
- name: Run unit test
4138
run: pnpm run test
4239

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ docs
1414
dist-ssr
1515
*.local
1616
*.tgz
17-
.eslintcache
18-
.stylelintcache
1917
coverage
2018

2119
# Editor directories and files

.prettierignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

.prettierrc

Lines changed: 0 additions & 7 deletions
This file was deleted.

.stylelintrc

Lines changed: 0 additions & 9 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A Vue3 component library for my own enjoyment, learning, & development <small>(f
88

99
## Tech Stack
1010

11-
**Client:** Vue3, Vite, TypeScript, Vitest, Storybook, Rollup, pnpm, ESLint, Prettier, Stylelint
11+
**Client:** Vue3, Vite, TypeScript, Vitest, Storybook, Rollup, pnpm
1212

1313
## Installation
1414

@@ -81,18 +81,6 @@ Build the project
8181
pnpm run build
8282
```
8383

84-
Check linting & formatting
85-
86-
```bash
87-
pnpm run lint:check
88-
```
89-
90-
Fix linting & formatting
91-
92-
```bash
93-
pnpm run lint:fix
94-
```
95-
9684
Run test suite in a single run
9785

9886
```bash

package.json

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@
2828
"serve:static": "http-serve docs -p 6007 -o",
2929
"build:docs": "storybook build -o ./docs",
3030
"build": "rimraf dist && vite build",
31-
"lint:check": "eslint --ext .ts,.js,.vue --ignore-path .gitignore --max-warnings=0 --cache . && prettier --check --ignore-unknown --cache . && stylelint src/**/*.{css,scss,vue} --cache --max-warnings=0",
32-
"lint:fix": "eslint --ext .ts,.js,.vue --ignore-path .gitignore --max-warnings=0 --cache --fix . && prettier --write --ignore-unknown --cache . && stylelint src/**/*.{css,scss,vue} --fix --cache --max-warnings=0",
3331
"test": "vitest run",
3432
"test:report": "open-cli ./coverage/index.html",
3533
"new-component": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./newComponent.ps1"
@@ -46,36 +44,21 @@
4644
"@storybook/testing-library": "^0.2.2",
4745
"@storybook/vue3": "^7.6.20",
4846
"@storybook/vue3-vite": "^7.6.20",
49-
"@typescript-eslint/eslint-plugin": "^6.21.0",
50-
"@typescript-eslint/parser": "^6.21.0",
5147
"@vitejs/plugin-vue": "^4.6.2",
5248
"@vitest/coverage-v8": "^1.6.0",
5349
"@vitest/ui": "^1.6.0",
54-
"@vue/eslint-config-prettier": "^8.0.0",
55-
"@vue/eslint-config-typescript": "^12.0.0",
5650
"@vue/test-utils": "^2.4.6",
5751
"c8": "^8.0.1",
58-
"eslint": "^8.57.1",
59-
"eslint-config-prettier": "^9.1.0",
60-
"eslint-plugin-prettier": "^5.2.2",
61-
"eslint-plugin-storybook": "^0.11.2",
62-
"eslint-plugin-vitest": "^0.5.4",
63-
"eslint-plugin-vue": "^9.32.0",
6452
"happy-dom": "^12.10.3",
6553
"http-serve": "^1.0.1",
6654
"open-cli": "^8.0.0",
6755
"postcss": "^8.5.1",
6856
"postcss-html": "^1.8.0",
69-
"prettier": "^3.4.2",
7057
"react": "18.3.1",
7158
"react-dom": "18.3.1",
7259
"rimraf": "^5.0.10",
7360
"sass": "^1.83.4",
7461
"storybook": "^7.6.20",
75-
"stylelint": "^16.13.2",
76-
"stylelint-config-recommended-scss": "^14.1.0",
77-
"stylelint-config-recommended-vue": "^1.5.0",
78-
"stylelint-config-standard-scss": "^12.0.0",
7962
"typescript": "^5.7.3",
8063
"vite": "^5.4.11",
8164
"vite-plugin-cp": "^4.0.8",

0 commit comments

Comments
 (0)