Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Init prettier, npm, eslint. Publish 1.0 to NPM
  • Loading branch information
Sticks committed Feb 13, 2023
1 parent 502fe71 commit e9d2aa7
Show file tree
Hide file tree
Showing 12 changed files with 1,844 additions and 202 deletions.
7 changes: 7 additions & 0 deletions .eslintrc.cjs
@@ -0,0 +1,7 @@
module.exports = {
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
root: true,
ignorePatterns: ['node_modules', 'dist', 'lib'],
};
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,3 +1,3 @@
node_modules/
compiled/
lib/
src/test.ts
4 changes: 4 additions & 0 deletions .npmignore
@@ -0,0 +1,4 @@
src
tsconfig.json
tslint.json
.prettierrc
9 changes: 9 additions & 0 deletions .prettierrc
@@ -0,0 +1,9 @@
{
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": false,
"bracketSameLine": true,
"printWidth": 69420
}

0 comments on commit e9d2aa7

Please sign in to comment.