Skip to content

chore(update-schema): update to the latest heroku api schema #28

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
80 changes: 0 additions & 80 deletions .circleci/config.yml

This file was deleted.

49 changes: 48 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,50 @@
{
"extends": ["oclif-typescript"]
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"tsconfigRootDir": "."
},
"plugins": [
"@typescript-eslint",
"unused-imports"
],
"extends": [
"eslint-config-salesforce-typescript",
"prettier"
],
"rules": {
"no-unused-vars": "off",
"unused-imports/no-unused-imports": "error",
"unused-imports/no-unused-vars": [
"warn",
{
"vars": "all",
"varsIgnorePattern": "^_",
"args": "after-used",
"argsIgnorePattern": "^_"
}
],
"@typescript-eslint/naming-convention": [
"warn",
{
"selector": "import",
"format": [
"camelCase",
"PascalCase"
]
}
],
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off"
},
"ignorePatterns": [
"lib",
"dist",
"**/*.d.ts"
]
}
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: build-only
on:
workflow_dispatch:
push:
paths: [ '*.ts', '*.js', '*.json', '*.lock' ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [ 16.x ]
os: [pub-hk-ubuntu-22.04-small]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm i
- run: npm run build
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
*-error.log
/.nyc_output
/dist
/package-lock.json
/tmp
node_modules
.idea
.DS_Store
12 changes: 12 additions & 0 deletions .prettier.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const config = {
endOfLine: 'auto',
"singleQuote": true,
"printWidth": 120,
"proseWrap": "always",
"tabWidth": 2,
"useTabs": false,
"trailingComma": "none",
"bracketSpacing": true,
"semi": true
};
export default config;
Loading
Loading