diff --git a/.live-css.config.js b/.live-css.config.js deleted file mode 100644 index 2eed84cb..00000000 --- a/.live-css.config.js +++ /dev/null @@ -1,146 +0,0 @@ -/* - This configuration file is used for running "live-css" server (https://www.npmjs.com/package/@webextensions/live-css) - It is meant to be used along with browser extension "Live editor for CSS, Less & Sass - Magic CSS": - https://github.com/webextensions/live-css-editor - - To generate this file, download and install Node JS from https://nodejs.org/en/download/ - After that: - $ npm install -g @webextensions/live-css - $ cd - $ live-css --init - --------OR-------- - Copy the default configuration file from: - https://github.com/webextensions/live-css-editor/tree/master/live-css/default.live-css.config.js - and save it as a file with name ".live-css.config.js" (note that the file name begins with a dot character) - - For further guidance, visit the following links: - https://www.npmjs.com/package/@webextensions/live-css - https://github.com/webextensions/live-css-editor/tree/master/live-css - https://github.com/webextensions/live-css-editor - https://github.com/webextensions/live-css-editor/issues -*/ - -/* eslint-env node */ // https://eslint.org/docs/rules/no-undef#nodejs - -module.exports = { // Learn more about "module.exports": - // https://www.sitepoint.com/understanding-module-exports-exports-node-js/ - // http://www.tutorialsteacher.com/nodejs/nodejs-module-exports - // http://stackabuse.com/how-to-use-module-exports-in-node-js/ - // https://nodejs.org/api/modules.html#modules_module_exports - - - // The "port" configuration option is used as a suggested port number when the live-css server needs to run - // on a separate port of its own. If the specified port is busy, the next available port may be used. - // It will be used when: - // - you run live-css from command-line - // - you run live-css in a Node JS project using require() syntax, but do not pass the "httpServer" option - "port": 3456, // Recommended value: A number between 1024 and 49151 - // The "live-css" server would start at this port number - // Learn more about ports: - // https://computer.howstuffworks.com/web-server8.htm - // https://en.wikipedia.org/wiki/Registered_port - - "edit-file-patterns": [ - "**/*.css", - "**/*.less", - "**/*.sass", - "**/*.scss", - "**/*.styl", - "**/*.stylus" - ], - - - "edit-file-ignore-patterns": [ - // Some of the common folders in various projects which you may wish to exclude - /(^|[/\\])\../, // This regular expression ignores the files/directories having name beginning with "." character - // Learn more about regular expressions: - // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions - "node_modules", - ".npm", - "logs", - "temp", - "tmp", - "**/*.min.css", - "**/tinymce/skin/**", - - "!node_modules/package/do-not-ignore.css" - ], - - - // IMPORTANT NOTE: Setting "root" to an incorrect value may result in failure to auto-refresh styles in the browser. - // If you are in doubt, don't use the "root" configuration option, live-css would still work fine. - // Keeping "root" configuration option as commented out by default - // "root": ".", // - // This path should point to the root ("/") of your web server for which you are using live-css. - // For example, - // If http://localhost/ points to /path/to/project/http-pub/ - // And this configuration file is placed at /path/to/project/ - // Then, you may use "root": "http-pub" "root": "/path/to/project/http-pub" - // This is the root folder which contains the files you wish to watch for changes - // This folder would be scanned recursively for files matching the "watch-patterns" - // while skipping the files matching the "watch-ignore-patterns" - // If you are setting "root" with a relative path value, then keep that path value - // as relative to this configuration file. - // Learn more: - // https://en.wikipedia.org/wiki/Path_(computing) - - - "watch-patterns": [ // - // Glob patterns or paths of files and directories to be watched recursively - // Learn more: - // https://www.npmjs.com/package/anymatch - // https://github.com/paulmillr/chokidar#api ("paths" property) - // https://en.wikipedia.org/wiki/Path_(computing) - - "**/*.css" // Include all the ".css" files to watch for changes - ], - - - "watch-ignore-patterns": [ // - // Glob patterns or paths of files and directories to be ignored from being watched - // Learn more: - // https://www.npmjs.com/package/anymatch - // https://github.com/paulmillr/chokidar#path-filtering ("ignored" property) - - // Some of the common folders in various projects which you may wish to exclude - /(^|[/\\])\../, // This regular expression ignores the files/directories having name beginning with "." character - // Learn more about regular expressions: - // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions - "node_modules", - ".npm", - "logs", - "temp", - "tmp", - - // "Negate" pattern (by using "!" symbol) to cancel ignore rule - // An example path which is required to be watched, but its parent folder is ignored - // **** IMPORTANT NOTE: - // **** For watching, this path would also need to be included in the "watch-patterns" section (without the "!" symbol) - "!node_modules/package/do-not-ignore.css" // The "!" symbol in the beginning negates the matching pattern from the "watch-ignore-patterns". It means that - // the file matching this pattern would not be ignored even though "node_modules" is marked to be ignored. - // Learn more: - // https://github.com/isaacs/minimatch/blob/master/README.md#properties ("negate" property) - ], - - - "allow-symlinks": false, // - // Learn more about symlinks / symbolic-links: - // https://en.wikipedia.org/wiki/Symbolic_link - // https://github.com/paulmillr/chokidar#path-filtering ("followSymlinks") - - - "list-files": false, // - // true: List the paths of the files being watched - // false: Print a "." (dot) character on the terminal screen for each file being watched - // This setting is applicable only during the initial launch of the "live-css" server. When a file matching the - // "watch-pattern" is newly created while the "live-css" server is already running, the path is listed anyways - - - "debug": false, // - // true: Logs some extra information which is helpful in debugging - // false: Does not log the extra debugging related information - - - "version": "8.0.3" // This represents the version of the live-css server which was used for generating this configuration file - // This may be helpful while debugging some issues and informing users about new features -}; diff --git a/sonar-project.properties b/sonar-project.properties index bdc9aeb3..7eee0735 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -2,12 +2,12 @@ sonar.projectKey=Eunomiac_eunos-blades sonar.organization=eunomiac # This is the name and version displayed in the SonarCloud UI. -#sonar.projectName=eunos-blades +sonar.projectName=eunos-blades #sonar.projectVersion=1.0 # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. -#sonar.sources=. +sonar.sources=. # Encoding of the source code. Default is default system encoding #sonar.sourceEncoding=UTF-8 \ No newline at end of file diff --git a/ts/sheets/actor/blades-faction-sheet.ts b/ts/sheets/actor/blades-faction-sheet.ts index 471b3c3b..ddc8a887 100644 --- a/ts/sheets/actor/blades-faction-sheet.ts +++ b/ts/sheets/actor/blades-faction-sheet.ts @@ -1,9 +1,6 @@ import BladesActor from "../../blades-actor.js"; -import BladesPC from "../../documents/actors/blades-pc.js"; -import BladesNPC from "../../documents/actors/blades-npc.js"; import BladesFaction from "../../documents/actors/blades-faction.js"; -import BladesCrew from "../../documents/actors/blades-crew.js"; import BladesSheet from "./blades-sheet.js"; import {BladesActorType} from "../../core/constants.js";