Skip to content

Commit 091c7de

Browse files
committed
Add CI config files
1 parent e111197 commit 091c7de

File tree

7 files changed

+32
-1
lines changed

7 files changed

+32
-1
lines changed

.eslintrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "eslint-config-discourse"
3+
}

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
gems
22
coverage/*
3-
!coverage/.last_run.json
3+
!coverage/.last_run.json
4+
.bundle/
5+
auto_generated
6+
.DS_Store
7+
node_modules/

.prettierrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

.rubocop.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
inherit_gem:
2+
rubocop-discourse: default.yml

.template-lintrc.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module.exports = {
2+
plugins: ["ember-template-lint-plugin-discourse"],
3+
extends: "discourse:recommended",
4+
};

Gemfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# frozen_string_literal: true
2+
3+
source 'https://rubygems.org'
4+
5+
group :development do
6+
gem 'rubocop-discourse'
7+
end

package.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"name": "discourse-mentionables",
3+
"version": "1.0.0",
4+
"repository": "[email protected]:paviliondev/discourse-mentionables.git",
5+
"author": "Pavilion",
6+
"license": "GPL V2",
7+
"devDependencies": {
8+
"eslint-config-discourse": "^1.1.8"
9+
}
10+
}

0 commit comments

Comments
 (0)