acecalisto3/PhiCo-D-Instruck
Text Generation • Updated • 4 • 2
index int64 0 0 | repo_id stringlengths 16 181 | file_path stringlengths 28 270 | content stringlengths 1 11.6M | __index_level_0__ int64 0 10k |
|---|---|---|---|---|
0 | petrpan-code/mui | petrpan-code/mui/material-ui/.browserslistrc | [modern]
last 1 chrome version
last 1 edge version
last 1 firefox version
last 1 safari version
node 14
# Default/Fallback
# `npx browserslist --mobile-to-desktop "> 0.5%, last 2 versions, Firefox ESR, not dead, not IE 11"` when the last major is released.
# Manually downgrading to ios_saf 12.4 for iPhone 6 and webpac... | 0 |
0 | petrpan-code/mui | petrpan-code/mui/material-ui/.editorconfig | # EditorConfig is awesome: https://editorconfig.org/
# top-most EditorConfig file
root = true
[*.md]
trim_trailing_whitespace = false
[*.js]
trim_trailing_whitespace = true
# Unix-style newlines with a newline ending every file
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
insert_final_n... | 1 |
0 | petrpan-code/mui | petrpan-code/mui/material-ui/.eslintignore | /.git
/.yarn
/benchmark/**/dist
/coverage
/docs/export
/docs/pages/playground/
/examples/material-ui-cra*/src/serviceWorker.js
/examples/material-ui-gatsby/public/
/examples/material-ui-preact/config
/examples/material-ui-preact/scripts
/examples/material-ui-nextjs/src
/packages/mui-codemod/lib
/packages/mui-codemod/sr... | 2 |
0 | petrpan-code/mui | petrpan-code/mui/material-ui/.eslintrc.js | const path = require('path');
const { rules: baseStyleRules } = require('eslint-config-airbnb-base/rules/style');
const forbidTopLevelMessage = [
'Prefer one level nested imports to avoid bundling everything in dev mode',
'See https://github.com/mui/material-ui/pull/24147 for the kind of win it can unlock.',
].joi... | 3 |
0 | petrpan-code/mui | petrpan-code/mui/material-ui/.markdownlint-cli2.cjs | const straightQuotes = require('./packages/markdownlint-rule-mui/straight-quotes');
const gitDiff = require('./packages/markdownlint-rule-mui/git-diff');
const tableAlignment = require('./packages/markdownlint-rule-mui/table-alignment');
const terminalLanguage = require('./packages/markdownlint-rule-mui/terminal-langua... | 4 |
0 | petrpan-code/mui | petrpan-code/mui/material-ui/.mocharc.js | module.exports = {
extension: ['js', 'mjs', 'ts', 'tsx'],
ignore: [
'**/build/**',
'**/node_modules/**',
// Mocha seems to ignore .next anyway (maybe because dotfiles?).
// We're leaving this to make sure.
'docs/.next/**',
],
recursive: true,
timeout: (process.env.CIRCLECI === 'true' ? 5 :... | 5 |
0 | petrpan-code/mui | petrpan-code/mui/material-ui/.stylelintrc.js | module.exports = {
extends: 'stylelint-config-standard',
ignoreFiles: [
// TypeScript declaration files contain no styles.
// Stylelint is also reporting parseError on `docs/types/react-docgen.d.ts`.
'**/*.d.ts',
],
rules: {
'alpha-value-notation': null,
'custom-property-pattern': null,
... | 6 |
0 | petrpan-code/mui | petrpan-code/mui/material-ui/.tidelift.yml | ci:
platform:
npm:
# Don't run unmainted test on nomnom, it's only used by build tools, not in MUI.
nomnom:
tests:
unmaintained: skip
# Don't run vulnerabity test on os-locale, it's only used by yargs in build tools, not in MUI.
os-locale:
tests:
vulnera... | 7 |
0 | petrpan-code/mui | petrpan-code/mui/material-ui/.vale.ini | # Config vale. More information at https://docs.errata.ai/vale/config
StylesPath = .github/styles
MinAlertLevel = suggestion
Packages = Google
[*.md]
# Ignore code injection which start with {{...
BlockIgnores = {{.*
# Custom syle
# BasedOnStyles = Blog
Blog.ComposedWords = YES
Blog.NamingConventions = YES
Blog.Typ... | 8 |
0 | petrpan-code/mui | petrpan-code/mui/material-ui/.yarnrc | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
network-timeout 150000
yarn-path ".yarn/releases/yarn-1.22.19.js"
| 9 |