Skip to content
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

add lint workflow+config, format and eslint fixes #71

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Lint
on: [push, pull_request]

permissions:
checks: read
contents: read

jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4

- name: Install Node.js dependencies
run: |
npm install

- name: Run Prettier to check formatting
run: |
npx prettier --config ./config/.prettierrc.json --check "**/*.js"
8 changes: 4 additions & 4 deletions babel-plugin-macros.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
'fontawesome-svg-core': {
'license': 'free'
}
}
"fontawesome-svg-core": {
license: "free",
},
};
8 changes: 4 additions & 4 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = function (api) {
api.cache(true);
return {
plugins: ['macros'],
}
}
return {
plugins: ["macros"],
};
};
8 changes: 8 additions & 0 deletions config/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"printWidth": 80,
"semi": true,
"trailingComma": "all",
"singleQuote": false,
"bracketSpacing": true,
"arrowParens": "always"
}
Loading