Skip to content

Commit

Permalink
chore: fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed Sep 5, 2022
1 parent 01c04e2 commit 08276e2
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/Feature_request.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 💡 Feature request
description: "For ideas or feature requests: please make a pull request or open an issue, or consider starting a discussion."
description: 'For ideas or feature requests: please make a pull request or open an issue, or consider starting a discussion.'
labels: [enhancement]
body:
- type: textarea
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release
on:
push:
tags:
- "v*"
- 'v*'

jobs:
release:
Expand All @@ -19,7 +19,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 16.x
registry-url: "https://registry.npmjs.org"
registry-url: 'https://registry.npmjs.org'

- name: Enable Corepack
run: corepack enable
Expand Down
10 changes: 5 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
"typescript.tsdk": "node_modules/typescript/lib",
"eslint.format.enable": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.eslint": true
},
"markdownlint.ignore": [
"CHANGELOG.md"
],
"search.exclude": {
"dist": true,
"node_modules": true,
"CHANGELOG.md": true,
"CHANGELOG.md": true
},
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.expand": false,
Expand Down Expand Up @@ -167,7 +167,7 @@
"stroustrup",
"stroustrup",
"camelcase",
"linebreak",
"linebreak"
],
"prettier.enable": false,
}
"prettier.enable": false
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pnpm add -D eslint @ow3/eslint-config

Simply create a `.eslintrc` file in your project root with the following content:

```js
```json
{
"extends": "@ow3"
}
Expand All @@ -46,7 +46,7 @@ Simply create a `.eslintrc` file in your project root with the following content

Simply add the following to your `package.json`:

```js
```json
{
"scripts": {
"lint": "eslint .",
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
"packageManager": "pnpm@7.3.0",
"author": "Chris Breuer",
"license": "MIT",
"engines": {
"node": ">=v16.15.1",
"pnpm": ">=7.3.0"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
Expand All @@ -13,10 +17,6 @@
"release": "bumpp package.json packages/*/package.json",
"test": "pnpm -r run test"
},
"engines": {
"node": ">=v16.15.1",
"pnpm": ">=7.3.0"
},
"devDependencies": {
"@ow3/eslint-config": "*",
"bumpp": "^8.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
"eslint": ">=7.4.0"
},
"dependencies": {
"eslint-plugin-ow3": "workspace:*",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsonc": "^2.2.1",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-ow3": "workspace:*",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"eslint-plugin-yml": "^1.0.0",
Expand Down

0 comments on commit 08276e2

Please sign in to comment.