style: npm run p:w .
Summary: Which is essentially `npx prettier --write .` Also fix `jshint` (possible) FP, wrong chars. Signed-off-by: Yongmin Hong <revi@omglol.email> Test Plan: `npm run p:w .` and verify no changes made. Reviewers: O1 revi & automations, revi Reviewed By: O1 revi & automations, revi Differential Revision: https://issuetracker.revi.xyz/D217
This commit is contained in:
parent
aca8c5967b
commit
04798b45fd
9 changed files with 122 additions and 64 deletions
7
.arclint
7
.arclint
|
@ -16,7 +16,12 @@
|
|||
},
|
||||
"jshint": {
|
||||
"type": "jshint",
|
||||
"include": "(\\.js$)"
|
||||
"include": [
|
||||
"(\\.cjs$)",
|
||||
"(\\.js$)",
|
||||
"(\\.mjs$)"
|
||||
],
|
||||
"jshint.jshintrc": ".jshint.json"
|
||||
},
|
||||
"json": {
|
||||
"type": "json",
|
||||
|
|
49
.github/dependabot.yml
vendored
49
.github/dependabot.yml
vendored
|
@ -3,45 +3,44 @@
|
|||
|
||||
version: 2
|
||||
updates:
|
||||
|
||||
# Maintain dependencies for Docker
|
||||
- package-ecosystem: "docker"
|
||||
- package-ecosystem: 'docker'
|
||||
assignees:
|
||||
- "revi"
|
||||
- 'revi'
|
||||
# Dockerfiles are stored in `container/lighthouse-ci-server/.
|
||||
directory: "container/lighthouse-ci-server"
|
||||
directory: 'container/lighthouse-ci-server'
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
day: "monday"
|
||||
time: "10:00"
|
||||
timezone: "Asia/Seoul"
|
||||
target-branch: "master"
|
||||
interval: 'weekly'
|
||||
day: 'monday'
|
||||
time: '10:00'
|
||||
timezone: 'Asia/Seoul'
|
||||
target-branch: 'master'
|
||||
labels: []
|
||||
# Maintain dependencies for GitHub Actions
|
||||
- package-ecosystem: "github-actions"
|
||||
- package-ecosystem: 'github-actions'
|
||||
assignees:
|
||||
- "revi"
|
||||
- 'revi'
|
||||
# Workflow files stored in the default location of `.github/workflows`.
|
||||
# You don't need to specify `/.github/workflows` for `directory`.
|
||||
# You can use `directory: "/"`.
|
||||
directory: "/"
|
||||
directory: '/'
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
day: "monday"
|
||||
time: "10:00"
|
||||
timezone: "Asia/Seoul"
|
||||
target-branch: "master"
|
||||
interval: 'weekly'
|
||||
day: 'monday'
|
||||
time: '10:00'
|
||||
timezone: 'Asia/Seoul'
|
||||
target-branch: 'master'
|
||||
labels: []
|
||||
# Maintain dependencies for NPM
|
||||
- package-ecosystem: "npm"
|
||||
- package-ecosystem: 'npm'
|
||||
assignees:
|
||||
- "revi"
|
||||
- 'revi'
|
||||
# npm packages are stored in the default location of `package.json`.
|
||||
directory: "/"
|
||||
directory: '/'
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
day: "monday"
|
||||
time: "10:00"
|
||||
timezone: "Asia/Seoul"
|
||||
target-branch: "master"
|
||||
interval: 'weekly'
|
||||
day: 'monday'
|
||||
time: '10:00'
|
||||
timezone: 'Asia/Seoul'
|
||||
target-branch: 'master'
|
||||
labels: []
|
||||
|
|
12
.github/workflows/build-container.yml
vendored
12
.github/workflows/build-container.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: "Build container images"
|
||||
name: 'Build container images'
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
|
@ -16,27 +16,27 @@ env:
|
|||
|
||||
jobs:
|
||||
container-build:
|
||||
name: "Build and publish containers to GitHub Container Registry"
|
||||
name: 'Build and publish containers to GitHub Container Registry'
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
attestations: write
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: "Checkout the repository"
|
||||
- name: 'Checkout the repository'
|
||||
uses: actions/checkout@v4
|
||||
- name: "Log in to the Container registry"
|
||||
- name: 'Log in to the Container registry'
|
||||
uses: docker/login-action@v3.2.0
|
||||
with:
|
||||
registry: ${{ env.REGISTRY }}
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: "Extract metadata (tags, labels) for Docker"
|
||||
- name: 'Extract metadata (tags, labels) for Docker'
|
||||
id: meta
|
||||
uses: docker/metadata-action@v5.5.1
|
||||
with:
|
||||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||
- name: "Build and push Docker image"
|
||||
- name: 'Build and push Docker image'
|
||||
id: push
|
||||
uses: docker/build-push-action@v5.3.0
|
||||
with:
|
||||
|
|
2
.github/workflows/quicksyntaxcheck.yml
vendored
2
.github/workflows/quicksyntaxcheck.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: "PHP Syntax Check"
|
||||
name: 'PHP Syntax Check'
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
|
|
4
.jshint.json
Normal file
4
.jshint.json
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"esversion": 8,
|
||||
"node": true
|
||||
}
|
|
@ -1,3 +1,3 @@
|
|||
# [Don’t be an asshole, and don’t be tolerant of assholes.](https://asshole.fyi/)
|
||||
# [Don't be an asshole, and don't be tolerant of assholes.](https://asshole.fyi/)
|
||||
|
||||
That simple.
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
"prettier": "^3.3.1"
|
||||
},
|
||||
"scripts": {
|
||||
"pcheck": "prettier --check .",
|
||||
"pwrite": "prettier --write ."
|
||||
"p:c": "prettier --check .",
|
||||
"p:w": "prettier --write ."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,28 +1,50 @@
|
|||
/** No betafeatures button */
|
||||
#pt-betafeatures { display: none; }
|
||||
#pt-betafeatures {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/** no ULS button */
|
||||
#pt-uls { display: none; }
|
||||
#pt-uls {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* I won't logout unless in preferences which is typed manually */
|
||||
#pt-logout { display: none; }
|
||||
#pt-preferences { display: none; }
|
||||
#pt-logout {
|
||||
display: none;
|
||||
}
|
||||
#pt-preferences {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/** Set custom color for redirect page */
|
||||
.mw-redirect { color: #FAAFBE;}.mw-redirect:visited { color: #FAAFBE;}.mw-redirect:hover { color: #FAAFBE;}.mw-redirect:active { color: #FAAFBE;}
|
||||
.mw-redirect {
|
||||
color: #faafbe;
|
||||
}
|
||||
.mw-redirect:visited {
|
||||
color: #faafbe;
|
||||
}
|
||||
.mw-redirect:hover {
|
||||
color: #faafbe;
|
||||
}
|
||||
.mw-redirect:active {
|
||||
color: #faafbe;
|
||||
}
|
||||
|
||||
/** No MediaViewer button on File: namespace pages */
|
||||
.mw-mmv-filepage-buttons { display: none }
|
||||
.mw-mmv-filepage-buttons {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Make protected pages' edit box shown in light pink. (http://www.color-hex.com/color/ffb6c1)
|
||||
*/
|
||||
.mw-textarea-protected, .ns-8 textarea {
|
||||
background: #FFB6C1;
|
||||
.mw-textarea-protected,
|
||||
.ns-8 textarea {
|
||||
background: #ffb6c1;
|
||||
}
|
||||
|
||||
/* Make semi-protected pages' edit box shown in yellow. */
|
||||
.mw-textarea-sprotected {
|
||||
background: #FFFFDB;
|
||||
background: #ffffdb;
|
||||
}
|
||||
|
||||
/* Edit summaries
|
||||
|
@ -35,20 +57,30 @@ .comment {
|
|||
/* Quick hack to force the Search tab on [[Special:Contribs]] open.
|
||||
Credit: Volker E. (WMF) & Stwalkerster
|
||||
[[Special:Permalink/19431311#Reverting the new "collapsed search interface" on Special:Contribs|Tech]] */
|
||||
.mw-special-Contributions .oo-ui-fieldsetLayout-group.mw-collapsible-content { display: block !important; }
|
||||
.mw-special-Contributions .oo-ui-fieldsetLayout-header { display: none !important; }
|
||||
.mw-special-Contributions .oo-ui-fieldsetLayout-group.mw-collapsible-content {
|
||||
display: block !important;
|
||||
}
|
||||
.mw-special-Contributions .oo-ui-fieldsetLayout-header {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/* Colorize diff size
|
||||
(Green for + and red for -) */
|
||||
.mw-plusminus-pos {
|
||||
color:green;
|
||||
color: green;
|
||||
}
|
||||
.mw-plusminus-neg {
|
||||
color:red;
|
||||
color: red;
|
||||
}
|
||||
|
||||
/* Get rid of 'partial' block. Uselessness 100% guaranteed.
|
||||
TODO: Fix this (MW update broke this) */
|
||||
.mw-block-restriction {display: none;} /* Kills partial block target list */
|
||||
.mw-block-editing-restriction {display: none;} /* Kill Partial switch */
|
||||
.mw-block-page-restrictions { display: none; } /* Kill radio box */
|
||||
.mw-block-restriction {
|
||||
display: none;
|
||||
} /* Kills partial block target list */
|
||||
.mw-block-editing-restriction {
|
||||
display: none;
|
||||
} /* Kill Partial switch */
|
||||
.mw-block-page-restrictions {
|
||||
display: none;
|
||||
} /* Kill radio box */
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
// enwiki purgetab
|
||||
mw.loader.load('//en.wikipedia.org/w/index.php?title=MediaWiki:Gadget-purgetab.js&oldid=951989513&action=raw&ctype=text/javascript');
|
||||
mw.loader.load(
|
||||
'//en.wikipedia.org/w/index.php?title=MediaWiki:Gadget-purgetab.js&oldid=951989513&action=raw&ctype=text/javascript',
|
||||
);
|
||||
|
||||
/* Automate purge confirmation dialog */
|
||||
if ( mw.config.get( 'wgAction' ) === 'purge' ) {
|
||||
$('form.mw-htmlform').submit();
|
||||
if (mw.config.get('wgAction') === 'purge') {
|
||||
$('form.mw-htmlform').submit();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -11,40 +13,56 @@ if ( mw.config.get( 'wgAction' ) === 'purge' ) {
|
|||
* @see https://meta.wikimedia.org/wiki/StewardScript
|
||||
* @update-token [[File:pathoschild/stewardscript.js]]
|
||||
*/
|
||||
mw.loader.load('//tools-static.wmflabs.org/meta/scripts/pathoschild.stewardscript.js');
|
||||
mw.loader.load(
|
||||
'//tools-static.wmflabs.org/meta/scripts/pathoschild.stewardscript.js',
|
||||
);
|
||||
|
||||
// Display users rights (Temporary, might work on my own rewrite of this or find another one)
|
||||
mw.loader.load('//en.wikipedia.org/w/index.php?title=User:Splarka/sysopdectector.js&oldid=653248315&action=raw&ctype=text/javascript');
|
||||
mw.loader.load(
|
||||
'//en.wikipedia.org/w/index.php?title=User:Splarka/sysopdectector.js&oldid=653248315&action=raw&ctype=text/javascript',
|
||||
);
|
||||
|
||||
// No MediaViewer
|
||||
mw.config.set("wgMediaViewerOnClick", false);
|
||||
mw.config.set('wgMediaViewerOnClick', false);
|
||||
|
||||
/**
|
||||
* Ajax sysop
|
||||
* @see https://meta.wikimedia.org/wiki/Ajax_sysop
|
||||
* @update-token [[File:pathoschild/ajaxsysop.js]]
|
||||
*/
|
||||
mw.loader.load('//tools-static.wmflabs.org/meta/scripts/pathoschild.ajaxsysop.js');
|
||||
mw.loader.load(
|
||||
'//tools-static.wmflabs.org/meta/scripts/pathoschild.ajaxsysop.js',
|
||||
);
|
||||
|
||||
/**
|
||||
* Forces left-to-right layout and editing on RTL wikis.
|
||||
* @see https://meta.wikimedia.org/wiki/Force_ltr
|
||||
* @update-token [[File:pathoschild/forceltr.js]]
|
||||
*/
|
||||
mw.loader.load('//tools-static.wmflabs.org/meta/scripts/pathoschild.forceltr.js');
|
||||
mw.loader.load(
|
||||
'//tools-static.wmflabs.org/meta/scripts/pathoschild.forceltr.js',
|
||||
);
|
||||
|
||||
// Change language to English if it is not
|
||||
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:-revi/lang-to-en.js&action=raw&ctype=text/javascript');
|
||||
mw.loader.load(
|
||||
'//meta.wikimedia.org/w/index.php?title=User:-revi/lang-to-en.js&action=raw&ctype=text/javascript',
|
||||
);
|
||||
|
||||
// IRTC1015's permalink-collector
|
||||
mw.loader.load('//ko.wikipedia.org/w/index.php?title=User:IRTC1015/copyReasonLink.js&oldid=20823911&action=raw&ctype=text/javascript');
|
||||
mw.loader.load(
|
||||
'//ko.wikipedia.org/w/index.php?title=User:IRTC1015/copyReasonLink.js&oldid=20823911&action=raw&ctype=text/javascript',
|
||||
);
|
||||
|
||||
// Display lists aka StewardLinks
|
||||
mw.loader.load('//meta.wikimedia.org/w/index.php?oldid=20169009&action=raw&ctype=text/javascript');
|
||||
mw.loader.load(
|
||||
'//meta.wikimedia.org/w/index.php?oldid=20169009&action=raw&ctype=text/javascript',
|
||||
);
|
||||
|
||||
/**
|
||||
* TemplateScript adds configurable templates and scripts to the sidebar, and adds an example regex editor.
|
||||
* @see https://meta.wikimedia.org/wiki/TemplateScript
|
||||
* @update-token [[File:Pathoschild/templatescript.js]]
|
||||
*/
|
||||
mw.loader.load('//tools-static.wmflabs.org/meta/scripts/pathoschild.templatescript.js');
|
||||
mw.loader.load(
|
||||
'//tools-static.wmflabs.org/meta/scripts/pathoschild.templatescript.js',
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue