Skip to content

Commit

Permalink
Merge pull request #4 from theappbusiness/dev/npm-init
Browse files Browse the repository at this point in the history
Init node and add tooling
  • Loading branch information
Si3rr4wow authored Nov 18, 2022
2 parents 4d6ffbd + fb1cd19 commit dc2971a
Show file tree
Hide file tree
Showing 11 changed files with 9,833 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"env": {
"node": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/recommended",
"plugin:import/typescript",
"prettier"
],
"ignorePatterns": ["**/node_modules"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "prettier", "import", "jest-formatting"],
"root": true,
"rules": {
"eqeqeq": "error",
"import/no-default-export": "error",
"import/no-unresolved": "error",
"import/order": [
"error",
{
"pathGroups": [
{
"group": "external",
"pattern": "~shared/**",
"position": "after"
}
],
"pathGroupsExcludedImportTypes": ["builtin"]
}
],
"prettier/prettier": [
"warn",
{
"endOfLine": "auto"
}
],
"jest-formatting/padding-around-describe-blocks": 2,
"jest-formatting/padding-around-test-blocks": 2,
"@typescript-eslint/explicit-module-boundary-types": "error",
"@typescript-eslint/explicit-function-return-type": "error",
"@typescript-eslint/no-unused-vars": [
"error",
{ "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }
]
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18.12.1
5 changes: 5 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package-lock.json
package.json
.eslintrc.json
.prettierrc.js
tsconfig.json
6 changes: 6 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
trailingComma: 'all',
tabWidth: 2,
semi: false,
singleQuote: true,
}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# PATIOS

Manage large Open API specifications and automatically generate TypeScript definitions from it.

## Why PATIOS?

**O**pen **API** to **T**ype**S**cript => OAPITS => PATIOS
Loading

0 comments on commit dc2971a

Please sign in to comment.