Skip to content

Commit

Permalink
Added linting tools and pre-commit hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
YashTotale committed Jan 18, 2021
1 parent e2d78f8 commit 69e129f
Show file tree
Hide file tree
Showing 7 changed files with 1,808 additions and 650 deletions.
10 changes: 10 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# dependencies
node_modules/

# testing
coverage/

# production
dist/
out/
build/
19 changes: 19 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"env": {
"es2021": true,
"node": true
},
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["@typescript-eslint"],
"rules": {
"indent": ["error", 4],
"linebreak-style": ["error", "unix"],
"quotes": ["error", "double"],
"semi": ["error", "always"]
}
}
5 changes: 4 additions & 1 deletion .markdownlintrc
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
{}
{
"MD013": false,
"MD041": false
}
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributing to Introspect
# Contributing to Airtable Automation

Welcome, and thank you for your interest in contributing to airtable-automation!

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Yash Totale
Copyright (c) 2021 Hack4Impact

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
Loading

0 comments on commit 69e129f

Please sign in to comment.