Skip to content
Merged
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
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -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
32 changes: 32 additions & 0 deletions .github/workflows/add-to-triage.yml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
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
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Editor and IDE specific files
.vscode
*.code-workspace
.cursor
.idea