DEV: Minor clean-up (#119)

This commit is contained in:
Jarek Radosz 2021-07-02 10:31:16 +02:00 committed by GitHub
parent f3b2011ae1
commit 60b2dd7908
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 101 deletions

12
.gitignore vendored
View File

@ -1,11 +1 @@
.bundle/
log/*.log
pkg/
auto_generated
.DS_Store
*.swp
*.swo
node_modules/
.idea/node_modules
yarn-error.log
.rubocop-https---raw-githubusercontent-com-discourse-*
node_modules

View File

@ -1,81 +0,0 @@
{
"predef":["Ember",
"jQuery",
"$",
"RSVP",
"Discourse",
"PreloadStore",
"Handlebars",
"I18n",
"bootbox",
"module",
"moduleFor",
"moduleForComponent",
"Pretender",
"sandbox",
"integration",
"controllerFor",
"test",
"ok",
"not",
"expect",
"equal",
"blank",
"present",
"visit",
"andThen",
"click",
"currentPath",
"currentRouteName",
"currentURL",
"fillIn",
"keyEvent",
"triggerEvent",
"count",
"exists",
"asyncTestDiscourse",
"fixture",
"find",
"sinon",
"moment",
"start",
"_",
"alert",
"containsInstance",
"parseHTML",
"deepEqual",
"notEqual",
"require",
"requirejs",
"hasModule",
"Blob",
"File"],
"node" : false,
"browser" : true,
"boss" : true,
"curly": false,
"debug": false,
"devel": false,
"eqeqeq": true,
"evil": true,
"forin": false,
"immed": false,
"laxbreak": false,
"newcap": true,
"noarg": true,
"noempty": false,
"nonew": false,
"nomen": false,
"onevar": false,
"plusplus": false,
"regexp": false,
"undef": true,
"unused": true,
"sub": true,
"strict": false,
"white": false,
"eqnull": true,
"quotmark": false,
"lastsemic": true,
"esnext": true
}

1
.prettierrc Normal file
View File

@ -0,0 +1 @@
{}

View File

@ -36,10 +36,10 @@ en:
data_types: "<h3>Data Types</h3>
<p>Here are common data types you can use:</p>
<ul>
<li><b>integer</b> - signed four-byte Integer</li>
<li><b>text</b> - variable-length character string</li>
<li><b>boolean</b> true/false</li>
<li><b>date</b> - calendar date (year, month, day)</li>
<li><b>integer</b> - signed four-byte Integer</li>
<li><b>text</b> - variable-length character string</li>
<li><b>boolean</b> true/false</li>
<li><b>date</b> - calendar date (year, month, day)</li>
</ul>
<p>For more information on data types, visit
<a href='http://www.postgresql.org/docs/9.3/static/datatype.html#DATATYPE-TABLE' target='_blank'>this website</a>.</p>"
@ -87,4 +87,3 @@ en:
no_search_results: "Sorry, we couldn't find any results matching your text."
group:
reports: "Reports"

View File

@ -1,8 +1,11 @@
{
"dependencies": {
"eslint-config-discourse": "^1.1.8"
},
"name": "discourse-data-explorer",
"version": "0.3.0",
"repository": "git@github.com:discourse/discourse-data-explorer.git",
"author": "Riking",
"license": "MIT",
"devDependencies": {
"@arkweid/lefthook": "^0.7.2"
"@arkweid/lefthook": "^0.7.2",
"eslint-config-discourse": "^1.1.8"
}
}