diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..6a804c2 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[package.json] +indent_style = space +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false diff --git a/.github/workflows/add-to-triage.yml b/.github/workflows/add-to-triage.yml new file mode 100644 index 0000000..8c3472f --- /dev/null +++ b/.github/workflows/add-to-triage.yml @@ -0,0 +1,32 @@ +name: add-to-triage + +on: + issues: + types: + - opened + - reopened + - transferred + + pull_request: + types: + - opened + - reopened + + workflow_call: + secrets: + PROJECT_BOT_TOKEN: + required: true + description: Token for the project bot to add issues and pull requests to the project triage board + +jobs: + add-to-triage: + runs-on: ubuntu-latest + + steps: + - name: Add to triage + uses: actions/add-to-project@v1.0.2 + with: + github-token: ${{ secrets.PROJECT_BOT_TOKEN }} + project-url: https://github.com/orgs/eslint/projects/3 + labeled: "triage:no" # Add all issues and pull requests that don't include "triage:no" label. + label-operator: NOT diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..103534c --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +# Editor and IDE specific files +.vscode +*.code-workspace +.cursor +.idea