Skip to content

Commit 186c10c

Browse files
committed
# Conflicts: # src/eslint-config-provider.ts
2 parents 07c52ae + ac64174 commit 186c10c

27 files changed

+2471
-1573
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
name: build
22

3-
on: [pull_request, push]
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- master
8+
- main
49

510
jobs:
611
build:
712
runs-on: ubuntu-latest
813

914
strategy:
1015
matrix:
11-
node-version: [16.x]
16+
node-version: [18.x]
1217

1318
steps:
1419
- uses: actions/checkout@v3

.github/workflows/publish.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
name: publish
22

3-
on: push
3+
on:
4+
push:
5+
tags:
6+
- "*"
47

58
jobs:
69
publish:
710
runs-on: ubuntu-latest
811

912
strategy:
1013
matrix:
11-
node-version: [16.x]
14+
node-version: [18.x]
1215

1316
steps:
1417
- uses: actions/checkout@v3
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
to-be-ignored.ts

e2e/projects/simple/eslint-recommended/.eslintrc.js renamed to e2e/projects/eslint-recommended/.eslintrc.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ module.exports = {
77
parser: "@typescript-eslint/parser",
88
extends: ["eslint:recommended"],
99
parserOptions: {
10-
project: "../tsconfig.json",
11-
},
12-
rules: {
13-
semi: 2,
10+
project: "./tsconfig.json",
1411
},
1512
};
File renamed without changes.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "eslint-recommended",
3+
"private": true,
4+
"scripts": {
5+
"test": "echo \"Error: no test specified\" && exit 1"
6+
},
7+
"devDependencies": {
8+
"@typescript-eslint/parser": "5.26.0",
9+
"eslint": "8.37.0",
10+
"typescript": "5.0.3"
11+
}
12+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es5",
4+
"module": "commonjs",
5+
"plugins": [
6+
{ "name": "typescript-eslint-language-service" }
7+
]
8+
}
9+
}

0 commit comments

Comments
 (0)