Skip to content

Commit a205c9a

Browse files
committed
chore(update-schemma): update to the latest heroku api schema
1 parent 26b54d0 commit a205c9a

File tree

503 files changed

+76895
-7493
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

503 files changed

+76895
-7493
lines changed

.circleci/config.yml

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

.eslintrc

Lines changed: 48 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,50 @@
11
{
2-
"extends": ["oclif-typescript"]
2+
"root": true,
3+
"parser": "@typescript-eslint/parser",
4+
"parserOptions": {
5+
"ecmaVersion": 6,
6+
"sourceType": "module",
7+
"tsconfigRootDir": "."
8+
},
9+
"plugins": [
10+
"@typescript-eslint",
11+
"unused-imports"
12+
],
13+
"extends": [
14+
"eslint-config-salesforce-typescript",
15+
"prettier"
16+
],
17+
"rules": {
18+
"no-unused-vars": "off",
19+
"unused-imports/no-unused-imports": "error",
20+
"unused-imports/no-unused-vars": [
21+
"warn",
22+
{
23+
"vars": "all",
24+
"varsIgnorePattern": "^_",
25+
"args": "after-used",
26+
"argsIgnorePattern": "^_"
27+
}
28+
],
29+
"@typescript-eslint/naming-convention": [
30+
"warn",
31+
{
32+
"selector": "import",
33+
"format": [
34+
"camelCase",
35+
"PascalCase"
36+
]
37+
}
38+
],
39+
"@typescript-eslint/semi": "warn",
40+
"curly": "warn",
41+
"eqeqeq": "warn",
42+
"no-throw-literal": "warn",
43+
"semi": "off"
44+
},
45+
"ignorePatterns": [
46+
"lib",
47+
"dist",
48+
"**/*.d.ts"
49+
]
350
}

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: build-only
2+
on:
3+
workflow_dispatch:
4+
push:
5+
paths: [ '*.ts', '*.js', '*.json', '*.lock' ]
6+
jobs:
7+
build:
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
matrix:
11+
node-version: [ 16.x ]
12+
os: [pub-hk-ubuntu-22.04-small]
13+
steps:
14+
- uses: actions/checkout@v3
15+
- name: Use Node.js ${{ matrix.node-version }}
16+
uses: actions/setup-node@v3
17+
with:
18+
node-version: ${{ matrix.node-version }}
19+
cache: npm
20+
- run: npm i
21+
- run: npm run build

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
*-error.log
33
/.nyc_output
44
/dist
5-
/package-lock.json
65
/tmp
76
node_modules
7+
.idea
8+
.DS_Store

.prettier.mjs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
const config = {
2+
endOfLine: 'auto',
3+
"singleQuote": true,
4+
"printWidth": 120,
5+
"proseWrap": "always",
6+
"tabWidth": 2,
7+
"useTabs": false,
8+
"trailingComma": "none",
9+
"bracketSpacing": true,
10+
"semi": true
11+
};
12+
export default config;

0 commit comments

Comments
 (0)