-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add devcontainer and fix eslint build
- Loading branch information
Showing
17 changed files
with
380 additions
and
271 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
default_config: | ||
lovelace: | ||
mode: yaml | ||
demo: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// See https://aka.ms/vscode-remote/devcontainer.json for format details. | ||
{ | ||
"name": "Restriction Card Development", | ||
"image": "ludeeus/devcontainer:monster-stable", | ||
"context": "..", | ||
"appPort": ["5000:5000", "9123:8123"], | ||
"postCreateCommand": "npm install", | ||
"runArgs": [ | ||
"-v", | ||
"${env:HOME}${env:USERPROFILE}/.ssh:/tmp/.ssh" // This is added so you can push from inside the container | ||
], | ||
"extensions": [ | ||
"github.vscode-pull-request-github", | ||
"tabnine.tabnine-vscode", | ||
"dbaeumer.vscode-eslint", | ||
"ms-vscode.vscode-typescript-tslint-plugin", | ||
"esbenp.prettier-vscode", | ||
"bierner.lit-html", | ||
"runem.lit-plugin", | ||
"ms-python.python" | ||
], | ||
"settings": { | ||
"files.eol": "\n", | ||
"editor.tabSize": 4, | ||
"terminal.integrated.shell.linux": "/bin/bash", | ||
"editor.formatOnPaste": false, | ||
"editor.formatOnSave": true, | ||
"editor.formatOnType": true, | ||
"files.trimTrailingWhitespace": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
resources: | ||
- url: http://127.0.0.1:5000/restriction-card.js | ||
type: module | ||
views: | ||
- cards: | ||
- type: custom:restriction-card | ||
card: | ||
type: light | ||
entity: light.kitchen_lights | ||
name: Basic | ||
- type: custom:hui-entities-card | ||
name: Rows | ||
entities: | ||
- type: custom:restriction-card | ||
row: true | ||
card: | ||
entity: light.kitchen_lights | ||
name: Basic | ||
- type: custom:restriction-card | ||
row: true | ||
card: | ||
entity: light.kitchen_lights | ||
name: Block | ||
restrictions: | ||
block: true | ||
- type: custom:restriction-card | ||
row: true | ||
card: | ||
entity: light.kitchen_lights | ||
name: Confirmation | ||
restrictions: | ||
confirm: true | ||
- type: custom:restriction-card | ||
row: true | ||
card: | ||
entity: light.kitchen_lights | ||
name: Pin | ||
restrictions: | ||
pin: | ||
code: 1234 | ||
- type: custom:restriction-card | ||
restrictions: | ||
confirm: | ||
exemptions: | ||
- user: adminid | ||
pin: | ||
code: 1234 | ||
exemptions: | ||
- user: wifeid | ||
- user: adminid | ||
block: | ||
exemptions: | ||
- user: guestid | ||
- user: wifeid | ||
- user: adminid | ||
exemptions: | ||
- user: ianid | ||
card: | ||
type: light | ||
entity: light.kitchen_lights | ||
name: Exemptions | ||
- type: custom:restriction-card | ||
card: | ||
type: sensor | ||
entity: sensor.outside_humidity | ||
name: Throttle? | ||
graph: line |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
module.exports = { | ||
parser: '@typescript-eslint/parser', // Specifies the ESLint parser | ||
extends: [ | ||
'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin | ||
'prettier/@typescript-eslint', // Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier | ||
'plugin:prettier/recommended', // Enables eslint-plugin-prettier and displays prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array. | ||
], | ||
parserOptions: { | ||
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features | ||
sourceType: 'module', // Allows for the use of imports | ||
experimentalDecorators: true, | ||
}, | ||
rules: { | ||
"@typescript-eslint/camelcase": 0 | ||
} | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
/node_modules/ | ||
/.rpt2_cache/ | ||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module.exports = { | ||
semi: true, | ||
trailingComma: 'all', | ||
singleQuote: true, | ||
printWidth: 120, | ||
tabWidth: 2, | ||
}; |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import resolve from 'rollup-plugin-node-resolve'; | ||
import typescript from 'rollup-plugin-typescript2'; | ||
import babel from 'rollup-plugin-babel'; | ||
import serve from 'rollup-plugin-serve'; | ||
import { terser } from 'rollup-plugin-terser'; | ||
|
||
export default { | ||
input: ['src/restriction-card.ts'], | ||
output: { | ||
dir: './dist', | ||
format: 'es', | ||
}, | ||
plugins: [ | ||
resolve(), | ||
typescript(), | ||
babel({ | ||
exclude: 'node_modules/**', | ||
}), | ||
terser(), | ||
serve({ | ||
contentBase: './dist', | ||
host: '0.0.0.0', | ||
port: 5000, | ||
allowCrossOrigin: true, | ||
headers: { | ||
'Access-Control-Allow-Origin': '*', | ||
}, | ||
}), | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
import resolve from 'rollup-plugin-node-resolve'; | ||
import typescript from 'rollup-plugin-typescript2'; | ||
import babel from 'rollup-plugin-babel'; | ||
import resolve from "rollup-plugin-node-resolve"; | ||
import typescript from "rollup-plugin-typescript2"; | ||
import babel from "rollup-plugin-babel"; | ||
import { terser } from "rollup-plugin-terser"; | ||
|
||
export default { | ||
input: ['src/restriction-card.ts'], | ||
input: ["src/restriction-card.ts"], | ||
output: { | ||
dir: './dist', | ||
format: 'es', | ||
dir: "./dist", | ||
format: "es" | ||
}, | ||
plugins: [ | ||
resolve(), | ||
typescript(), | ||
babel({ | ||
exclude: 'node_modules/**' | ||
exclude: "node_modules/**" | ||
}), | ||
terser()] | ||
terser(), | ||
] | ||
}; |
Oops, something went wrong.