Skip to content

Commit

Permalink
Split psl-linter from original repo
Browse files Browse the repository at this point in the history
  • Loading branch information
c4xuxo committed Dec 5, 2022
1 parent 730263e commit 3559ee4
Show file tree
Hide file tree
Showing 130 changed files with 1,797 additions and 16,011 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- vscode version: [e.g. 1.72.2]
- vscode-psl version[e.g. 1.12.1]
- psl-linter version: [e.g. 1.72.2]
- node version[e.g. 1.12.1]

**Additional context**
Add any other context about the problem here.
26 changes: 26 additions & 0 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# This workflow will do a clean installation of node dependencies,
# cache/restore them, build the source code and run tests.

name: Build and Test CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
name: Build and test
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'
cache: 'npm'
- run: npm install
- run: npm run build
- run: npm run test
28 changes: 0 additions & 28 deletions .github/workflows/build_test_vscode.yml

This file was deleted.

48 changes: 0 additions & 48 deletions .github/workflows/publish_vscode.yml

This file was deleted.

19 changes: 9 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
*.jrnl
*.log
out
node_modules
*.vsix
.project
.settings
src/hostif/target/*
.classpath
src/pslLint/cli/lib/*
# Dependency directory
node_modules/

# Editors
.idea/

# Project build
lib/
*.tgz
12 changes: 12 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Exclude all files
*

# Add lib/
!lib/**
# Exclude .map in lib/
*.map

# Add documentation
!LICENSE
!CHANGELOG.md
!README.md
File renamed without changes.
61 changes: 0 additions & 61 deletions .travis.yml

This file was deleted.

84 changes: 0 additions & 84 deletions .vscode/launch.json

This file was deleted.

9 changes: 4 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"out": false // set this to true to hide the "out" folder with the compiled JS files
"lib": false
},
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
"lib": true
},
"editor.rulers": [120] // Recommended typescript ruler
}
"editor.rulers": [120]
}
36 changes: 0 additions & 36 deletions .vscode/tasks.json

This file was deleted.

16 changes: 0 additions & 16 deletions .vscodeignore

This file was deleted.

Loading

0 comments on commit 3559ee4

Please sign in to comment.